13f09551c83f72170aa083fbf4f5cd44918d50a5,extensions/swt/source/ca/odell/glazedlists/swt/EventComboViewer.java,EventComboViewer,EventComboViewer,#EventList#Combo#ILabelProvider#,54
Before Change
// from occurring until we fully initialize this EventComboViewer
source.getReadWriteLock().readLock().lock();
try {
this.swtSource = GlazedListsSWT.swtThreadProxyList(source, combo.getDisplay());
this.combo = combo;
this.labelProvider = labelProvider;
After Change
* @see GlazedListsSWT#beanLabelProvider(String)
*/
public EventComboViewer(EventList<E> source, Combo combo, ILabelProvider labelProvider) {
super(createProxyList(source, combo.getDisplay()), combo, labelProvider);
disposeSource = (this.source != source);
}
/**